home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / alib / csup / intuition_support / easyreq.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-19  |  462 b   |  24 lines

  1.  
  2. /*
  3.  *  EasyRequest(Window, easyStruct, IDCMP_ptr, ArgList)
  4.  */
  5.  
  6. #include <exec/types.h>
  7. #include <intuition/intuition.h>
  8. //#include <clib/intuition_protos.h>
  9.  
  10. extern LONG EasyRequestArgs( struct Window *window, struct EasyStruct *easyStruct,
  11.     ULONG *idcmpPtr, APTR args );
  12.  
  13.  
  14. LONG
  15. EasyRequest(win, es, idcmp_ptr, APTR arg1, ...)
  16. struct Window *win;
  17. struct EasyStruct *es;
  18. ULONG *idcmp_ptr;
  19. APTR arg1;
  20. {
  21.     return(EasyRequestArgs(win, es, idcmp_ptr, &arg1));
  22. }
  23.  
  24.